home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 4 / The Arsenal Files 4 (Arsenal Computer).ISO / casm / au116-as.exe / UTIL / CONTINUE.CPP < prev    next >
C/C++ Source or Header  |  1993-12-05  |  250b  |  13 lines

  1. #include "..\au.hpp"
  2.  
  3. /*************************************************************************/
  4. int ask_continue()
  5. {
  6.     char opt;
  7.  
  8.     fprintf(stderr, "Continue Y/N:");
  9.     opt = toupper(my_getch());
  10.     fprintf(stderr, "\n");
  11.     return opt=='Y';
  12. }
  13.